ABC153 E - Crested Ibis vs Monster
提出
code: python
h, n = map(int, input().split())
# dpi 魔力iの消耗で与えられるダメージの最大値 解答
code: python
h, n = map(int, input().split())
# print(ab)
# dpi := モンスターの体力を i 減らす (ダメージ i を与える) のにかかる最小コスト for i in range(h):
for damage, cost in ab:
# 与えるダメージが h を超える場合はまとめる
total_damage = min(i + damage, h)
# print(dp)
テーマ
メモ
提出
code: python
h, n = map(int, input().split())
# dpi := モンスターの体力が i である時、消耗した魔力の合計 # TODO: マイナス考慮
while dp[] > 0:
for a, b in ab: